From 702e4e5b34ff5d7bd5535937f3067c57e52a6a53 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Fri, 13 Feb 2004 23:29:23 +0000 Subject: [PATCH] (struct draw_fringe_bitmap_params): Change member bits from char to short to facilitate wider bitmaps. (struct redisplay_interface): Fix prototype of define_fringe_bitmap member. --- src/dispextern.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dispextern.h b/src/dispextern.h index ec6750086ea..fc27c6e185e 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -1641,7 +1641,7 @@ extern int face_change_count; struct draw_fringe_bitmap_params { int which; /* enum fringe_bitmap_type */ - unsigned char *bits; + unsigned short *bits; int wd, h, dh; int x, y; int bx, nx, by, ny; @@ -2189,7 +2189,7 @@ struct redisplay_interface struct draw_fringe_bitmap_params *p)); /* Define and destroy fringe bitmap no. WHICH. */ - void (*define_fringe_bitmap) P_ ((int which, unsigned char *bits, + void (*define_fringe_bitmap) P_ ((int which, unsigned short *bits, int h, int wd)); void (*destroy_fringe_bitmap) P_ ((int which)); -- 2.30.2